docker-test / Dockerfile
NBayer's picture
Create Dockerfile
f65a567
raw
history blame
119 Bytes
FROM python:3.9
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
EXPOSE 3000
CMD ["pyhon", "./app.py"]