We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0217a02 commit b315471Copy full SHA for b315471
Dockerfile
@@ -6,6 +6,10 @@ WORKDIR /usr/src/app
6
COPY requirements.txt ./
7
RUN pip install --no-cache-dir -r requirements.txt
8
9
+RUN apt-get update && apt-get install -y --no-install-recommends \
10
+ gcc g++ make openjdk-11-jdk-headless && \
11
+ rm -rf /var/lib/apt/lists/*
12
+
13
# 앱 코드 복사
14
COPY server/app.py .
15
COPY server/code ./code
0 commit comments