Skip to content
This repository has been archived by the owner on Nov 30, 2023. It is now read-only.

Commit

Permalink
Fixes to python3+postgres image
Browse files Browse the repository at this point in the history
  • Loading branch information
qubitron committed Apr 16, 2019
1 parent 29d325b commit ad9a4d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions containers/python-3-postgres/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Licensed under the MIT License. See LICENSE in the project root for license information.
#-----------------------------------------------------------------------------------------

FROM python:3-slim
FROM python:3

# Copy default endpoint specific user settings overrides into container to specify Python path
COPY .devcontainer/settings.vscode.json /root/.vscode-remote/data/Machine/settings.json
Expand All @@ -20,7 +20,7 @@ RUN apt-get update && apt-get -y install git procps
RUN apt-get install -y libicu[0-9][0-9]

# Install Python dependencies from requirements.txt if it exists
COPY .devcontainer/requirements.txt.tmp requirements.txt* /workspace/
COPY .devcontainer/requirements.txt.temp requirements.txt* /workspace/
RUN if [ -f "requirements.txt" ]; then pip install -r requirements.txt && rm requirements.txt; fi

# Clean up
Expand Down
Empty file.

0 comments on commit ad9a4d5

Please sign in to comment.