Compare commits

..

1 Commits

Author SHA1 Message Date
ee0e081983
Implemented Transifex 2022-12-19 18:54:51 +05:30

View File

@ -1,3 +1,13 @@
# #Deriving the latest base image
# FROM python:latest
# WORKDIR /transifex-webhook
# ENV
# COPY requirements.txt requirements.txt
# RUN pip install -r requirements.txt
# COPY transifex_demo.py ./
# COPY . .
# CMD [ "python", "./transifex_demo.py"]
FROM python:3
ADD requirements.txt /
RUN pip install -r requirements.txt