ium_444463/Dockerfile

16 lines
226 B
Docker
Raw Normal View History

2022-04-23 17:15:28 +02:00
FROM ubuntu:latest
FROM python:3.8
RUN apt update
COPY ./requirements.txt .
RUN apt-get update
RUN pip3 install -r requirements.txt
RUN apt-get install zip unzip --yes
WORKDIR /app
COPY ./deepl.py .
CMD python3 deepl.py