We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f044205 commit a47757fCopy full SHA for a47757f
2 files changed
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3 AS base
+FROM python:3-slim AS base
2
3
# This will be set by the GitHub action to the folder containing this component.
4
ARG FOLDER=/app
@@ -12,6 +12,7 @@ WORKDIR ${FOLDER}
12
USER 1000:1000
13
14
# Install dependencies
15
+# https://github.com/microsoft/WSL/issues/6643#issuecomment-963765350
16
RUN DISPLAY= pip install --no-cache-dir -r requirements.txt
17
18
# Production image, copy all the files and run "npm start"
Dockerfile.dev
-FROM python:3
+FROM python:3-slim
0 commit comments