Last active
November 15, 2021 16:20
-
-
Save cassioeskelsen/9773378c45ca0ff0dcf2e7a4a6491d8e to your computer and use it in GitHub Desktop.
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:3.10-slim | |
ARG SOURCE_FOLDER | |
WORKDIR /src | |
RUN apt-get update && apt-get install -y git tzdata gcc | |
ENV TZ America/Sao_Paulo | |
COPY requirements.txt requirements.txt | |
RUN pip install -r requirements.txt | |
COPY ./src/xpto/common ./src/xpto/common | |
COPY ./src/xpto/$SOURCE_FOLDER ./src/xpto/$SOURCE_FOLDER | |
CMD ./src/xpto/$SOURCE_FOLDER/run.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment