Dockerfile 226 Bytes
Newer Older
hepj's avatar
hepj committed
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM ubuntu:22.04

RUN apt-get update && apt-get install -y python3 python3-pip

COPY . /app

WORKDIR /app

RUN test -f /app/generations.json && rm /app/generations.json || true

RUN pip3 install .

CMD ["python3", "main.py"]