Skip to content

Commit

Permalink
chore: Fix Dev Enviornment
Browse files Browse the repository at this point in the history
The interperater path for dev containers has changed in vs code, and the
extensions require nodejs inside the container.
  • Loading branch information
techman83 committed Sep 20, 2024
1 parent 36f573d commit 3018dad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"python.pythonPath": "/usr/bin/python3",
"python.formatting.provider": "autopep8",
"python.defaultInterpreterPath": "/usr/bin/python",
"python.testing.cwd": "netkan/",
"editor.formatOnSave": true,
"files.exclude": {
Expand Down
1 change: 1 addition & 0 deletions netkan/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ RUN /home/netkan/.local/bin/pytest -v

FROM production AS dev
USER root
RUN apt-get install nodejs -y && apt-get clean
ADD . /netkan
RUN chown -R netkan:netkan /netkan
COPY run_dev.sh /usr/local/bin/
Expand Down

0 comments on commit 3018dad

Please sign in to comment.