eggie5-adyen commited on
Commit
6ee8a0e
1 Parent(s): 9c9adeb

adding wget

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile CHANGED
@@ -1,6 +1,13 @@
1
  # Use an official Python runtime as a parent image
2
  FROM python:3.9-slim
3
 
 
 
 
 
 
 
 
4
  # Set environment variables
5
  ENV PYTHONUNBUFFERED=1
6
  ENV PYTHONIOENCODING=UTF-8
 
1
  # Use an official Python runtime as a parent image
2
  FROM python:3.9-slim
3
 
4
+ # Install system dependencies
5
+ RUN apt-get update && apt-get install -y --no-install-recommends \
6
+ gcc \
7
+ python3-dev \
8
+ wget \
9
+ && rm -rf /var/lib/apt/lists/*
10
+
11
  # Set environment variables
12
  ENV PYTHONUNBUFFERED=1
13
  ENV PYTHONIOENCODING=UTF-8