Last active
May 19, 2021 02:16
-
-
Save kudaliar032/091cf646acffef32164863994faa2492 to your computer and use it in GitHub Desktop.
BlanKonf site Dockerfiles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:2.7-alpine | |
WORKDIR /konfboi | |
ADD . . | |
RUN pip install django==1.2 | |
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"] | |
EXPOSE 8000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:2.7-alpine | |
WORKDIR /konfboi2010 | |
ADD . . | |
RUN pip install django==1.2 | |
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"] | |
EXPOSE 8000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:2.7-alpine | |
WORKDIR /konfboi2012 | |
ADD . . | |
RUN pip install django==1.2 | |
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"] | |
EXPOSE 8000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:2.7-alpine | |
WORKDIR /konfboi3 | |
ADD . . | |
RUN pip install django==1.2 | |
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"] | |
EXPOSE 8000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:2.7-alpine | |
WORKDIR /konfboi4 | |
ADD . . | |
RUN pip install django==1.2 | |
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"] | |
EXPOSE 8000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment