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
|
2022-06-05 15:52:47 +02:00
|
|
|
RUN useradd -r -u 111 jenkins
|
2022-04-23 17:15:28 +02:00
|
|
|
COPY ./deepl.py .
|
2022-06-05 15:30:46 +02:00
|
|
|
# COPY ./MLProject .
|
|
|
|
COPY ./evaluation.py .
|
2022-05-03 15:30:24 +02:00
|
|
|
|
2022-05-22 21:37:36 +02:00
|
|
|
# CMD python3 deepl.py 10
|