diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..517e0502 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM python:latest + +WORKDIR /usr/workspace/resin + +COPY . . + +RUN python3 -m pip install --upgrade poetry +RUN poetry install +RUN poetry build + +EXPOSE 8000 + +CMD [ "poetry", "run", "resin", "start" ]