mirror of
https://git.sr.ht/~cadence/NewLeaf
synced 2024-11-14 03:57:31 +00:00
7ed3248104
- Removed default config file from Dockerfile - added .git folder to dockerignore
13 lines
179 B
Docker
13 lines
179 B
Docker
FROM python:3.9-buster
|
|
|
|
WORKDIR /workdir
|
|
|
|
COPY ./requirements.txt /workdir/requirements.txt
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . /workdir
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD python index.py |