Tweak installed extensions

This commit is contained in:
Chuck Lantz
2019-04-19 14:40:02 -07:00
parent 03dc04cfbd
commit 9ec6f2a115
4 changed files with 7 additions and 8 deletions

View File

@@ -8,6 +8,9 @@ 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
# Install pylint
RUN pip install pylint
# Install git, process tools
RUN apt-get update && apt-get -y install git procps
@@ -21,9 +24,6 @@ WORKDIR /workspace
COPY .devcontainer/requirements.txt.temp requirements.txt* /workspace/
RUN if [ -f "requirements.txt" ]; then pip install -r requirements.txt && rm requirements.txt*; fi
# Expose port 5000 as the default web port
EXPOSE 5000
# Clean up
RUN apt-get autoremove -y \
&& apt-get clean -y \