diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index cb2bb9f..e92fa0a 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,17 +1,5 @@ FROM mcr.microsoft.com/vscode/devcontainers/universal:1.7.5-linux -#ENV PYTHONUNBUFFERED 1 - -# [Optional] If your requirements rarely change, uncomment this section to add them to the image. -# COPY requirements.txt /tmp/pip-tmp/ -# RUN pip3 --disable-pip-version-check --no-cache-dir install -r /tmp/pip-tmp/requirements.txt \ -# && rm -rf /tmp/pip-tmp - -# [Optional] Uncomment this section to install additional OS packages. -# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ -# && apt-get -y install --no-install-recommends - - # Set environment variables to avoid interactive prompts during package installation ENV DEBIAN_FRONTEND=noninteractive @@ -39,6 +27,3 @@ RUN apt-get install -y r-base # # Install Lighttpd # RUN apt-get update && \ # apt-get install -y lighttpd - -# Start PostgreSQL and Lighttpd services -# CMD service postgresql start && lighttpd -D -f /etc/lighttpd/lighttpd.conf diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ae87d19..4b101bf 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -10,14 +10,14 @@ // "version": "7.4", // "extensionsExtra": "xdebug redis" // } - } + }, // Use 'forwardPorts' to make a list of ports inside the container available locally. // This can be used to network with other containers or the host. // "forwardPorts": [5000, 5432], // Use 'postCreateCommand' to run commands after the container is created. - // "postCreateCommand": "make", + "postCreateCommand": "make" // Configure tool-specific properties. // "customizations": {},