Forgot to add docker assets
This commit is contained in:
parent
798debc3e3
commit
83dda4c7a7
6
assets/apprentice/docker/basic/local-dev.dockerfile
Normal file
6
assets/apprentice/docker/basic/local-dev.dockerfile
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
FROM python:slim
|
||||||
|
|
||||||
|
COPY ./requirements.txt .
|
||||||
|
RUN pip install -r ./requirements.txt
|
||||||
|
|
||||||
|
CMD ["python", "./run.py"]
|
6
assets/apprentice/docker/basic/production.dockerfile
Normal file
6
assets/apprentice/docker/basic/production.dockerfile
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
FROM python:slim
|
||||||
|
|
||||||
|
COPY ./ .
|
||||||
|
RUN pip install -r ./requirements.txt
|
||||||
|
|
||||||
|
CMD ["python", "./run.py"]
|
Loading…
Reference in New Issue
Block a user