translators-will commited on
Commit
c6f2286
·
verified ·
1 Parent(s): fa3d928

Upload dockerfile.txt

Browse files
Files changed (1) hide show
  1. dockerfile.txt +9 -0
dockerfile.txt ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.10-slim
2
+
3
+ # Install system dependencies
4
+ RUN apt-get update && apt-get install -y \
5
+ gcc \
6
+ cargo \
7
+ nodejs \
8
+ build-essential \
9
+ && rm -rf /var/lib/apt/lists/*