improve devcontainer
Django CI/CD / test (push) Successful in 1m7s Details
Django CI/CD / build-and-push (push) Successful in 2m26s Details

This commit is contained in:
Lukáš Kucharczyk 2024-11-09 11:56:20 +01:00
parent d81df6452a
commit cf503a7b7d
2 changed files with 28 additions and 21 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "Django Time Tracker", "name": "Django Time Tracker",
"dockerFile": "Dockerfile", "dockerFile": "../devcontainer.Dockerfile",
"customizations": { "customizations": {
"vscode": { "vscode": {
"settings": { "settings": {
@ -10,12 +10,16 @@
}, },
"extensions": [ "extensions": [
"ms-python.python", "ms-python.python",
"ms-python.debugpy",
"ms-python.vscode-pylance", "ms-python.vscode-pylance",
"ms-azuretools.vscode-docker" "ms-azuretools.vscode-docker",
"batisteo.vscode-django",
"charliermarsh.ruff",
"bradlc.vscode-tailwindcss",
"EditorConfig.EditorConfig"
] ]
} }
}, },
"forwardPorts": [8000], "forwardPorts": [8000],
"postCreateCommand": "poetry install && poetry run python manage.py migrate", "postCreateCommand": "poetry install && poetry run python manage.py migrate && npm install && make dev",
"remoteUser": "vscode" }
}

View File

@ -5,7 +5,10 @@ ENV PYTHONUNBUFFERED=1
WORKDIR /workspace WORKDIR /workspace
# Install Poetry # Install Poetry
RUN apt-get update && apt-get install -y curl \ RUN apt-get update && apt-get install -y \
curl \
make \
npm \
&& rm -rf /var/lib/apt/lists/* && rm -rf /var/lib/apt/lists/*
RUN curl -sSL https://install.python-poetry.org | python3 - RUN curl -sSL https://install.python-poetry.org | python3 -
ENV PATH="/root/.local/bin:$PATH" ENV PATH="/root/.local/bin:$PATH"