Last active
June 12, 2018 23:06
-
-
Save thicolares/311f18c7a67fa6fdfc303931f1a5d12f to your computer and use it in GitHub Desktop.
Build a docker image to run python script
This file contains 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:3 | |
ENV PYTHONUNBUFFERED 1 | |
RUN mkdir /code | |
WORKDIR /code | |
ADD . /code/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Coloque aqui o arquivo
Dockerfile