diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 278689c..adeba26 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -13,7 +13,9 @@ }, // Features to add to the dev container. More info: https://containers.dev/features. - // "features": {}, + "features": { + "ghcr.io/devcontainers/features/docker-in-docker:2": {} + }, // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], diff --git a/dockerfile b/dockerfile new file mode 100644 index 0000000..2912b26 --- /dev/null +++ b/dockerfile @@ -0,0 +1,6 @@ +FROM python:3.12 + +COPY slopserver/ requirements.txt /slopserver/ +WORKDIR /slopserver/ + +RUN python3 -m pip install -r requirements.txt \ No newline at end of file