Dodanie Dockerfile LAB4
This commit is contained in:
parent
cec04a1740
commit
54d0355326
16
Dockerfile
Normal file
16
Dockerfile
Normal file
@ -0,0 +1,16 @@
|
||||
FROM ubuntu:latest
|
||||
|
||||
RUN apt-get update
|
||||
RUN apt-get install -y python3-pip
|
||||
RUN apt-get install -y figlet
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY ./requirements.txt ./
|
||||
COPY ./script.py ./
|
||||
COPY ./kaggle.json /root/.kaggle/
|
||||
|
||||
RUN pip3 install --user -r ./requirements.txt
|
||||
|
||||
CMD python3 script.py
|
||||
|
Loading…
Reference in New Issue
Block a user