Update Dockerfile
Browse files- Dockerfile +5 -4
Dockerfile
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
FROM python:3.9.5-slim-buster
|
| 2 |
-
LABEL author="
|
| 3 |
-
LABEL email="
|
| 4 |
|
| 5 |
|
| 6 |
RUN chmod -R 777 /var
|
|
@@ -9,8 +9,8 @@ RUN chmod 777 /etc/timezone
|
|
| 9 |
RUN set -x && \
|
| 10 |
apt-get update && \
|
| 11 |
apt-get install --no-install-recommends -y git && \
|
| 12 |
-
git config --global user.email "
|
| 13 |
-
git config --global user.name "
|
| 14 |
git config --global http.postBuffer 524288000
|
| 15 |
|
| 16 |
|
|
@@ -26,6 +26,7 @@ ENV PATH="/home/user/.local/bin:$PATH"
|
|
| 26 |
RUN git clone https://github.com/vastsa/FileCodeBox /home/user/app
|
| 27 |
|
| 28 |
WORKDIR /home/user/app
|
|
|
|
| 29 |
RUN pip install -r requirements.txt
|
| 30 |
|
| 31 |
EXPOSE 12345
|
|
|
|
| 1 |
FROM python:3.9.5-slim-buster
|
| 2 |
+
LABEL author="elon"
|
| 3 |
+
LABEL email="elonmusk@x.com"
|
| 4 |
|
| 5 |
|
| 6 |
RUN chmod -R 777 /var
|
|
|
|
| 9 |
RUN set -x && \
|
| 10 |
apt-get update && \
|
| 11 |
apt-get install --no-install-recommends -y git && \
|
| 12 |
+
git config --global user.email "codebox@@x.com" && \
|
| 13 |
+
git config --global user.name "codebox" && \
|
| 14 |
git config --global http.postBuffer 524288000
|
| 15 |
|
| 16 |
|
|
|
|
| 26 |
RUN git clone https://github.com/vastsa/FileCodeBox /home/user/app
|
| 27 |
|
| 28 |
WORKDIR /home/user/app
|
| 29 |
+
|
| 30 |
RUN pip install -r requirements.txt
|
| 31 |
|
| 32 |
EXPOSE 12345
|