Torma Kristóf
37b6d09df5
All checks were successful
continuous-integration/drone/push Build is passing
10 lines
118 B
Docker
10 lines
118 B
Docker
FROM python:3
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . ./
|
|
|
|
RUN pip3 install --no-cache-dir -r requirements.txt
|
|
|
|
CMD ["python3" "app.py"]
|