Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ilude committed Mar 22, 2024
1 parent 828c380 commit f0ebf24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
// "TERM_SHELL": "${localEnv:TERM_SHELL:zsh}"
}
},
"updateContentCommand": "LC_ALL=C.UTF-8 ansible-playbook --inventory 127.0.0.1 --connection=local /workspaces/${localWorkspaceFolderBasename}/.devcontainer/ansible/setup-container.yml",
"updateContentCommand": "LC_ALL=C.UTF-8 ansible-playbook --inventory 127.0.0.1 --connection=local ${containerWorkspaceFolder}/.devcontainer/ansible/setup-container.yml",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"runArgs": ["--name", "${localWorkspaceFolderBasename}_devcontainer", "--hostname", "${localWorkspaceFolderBasename}","--env-file",".devcontainer/.env" ],
"mounts": [
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ RUN pip3 install --upgrade pip && \
FROM base as production

COPY --from=build --chown=${USER}:${USER} ${PYTHON_DEPS_PATH} ${PYTHON_DEPS_PATH}
COPY --chown=${USER}:${USER} app ${PROJECT_PATH}
USER ${USER}

CMD [ "python3", "app/app.py" ]
Expand Down

0 comments on commit f0ebf24

Please sign in to comment.