Forgot to add docker assets
This commit is contained in:
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"]
|
Reference in New Issue
Block a user