We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f81fbca commit 23fb765Copy full SHA for 23fb765
src/client/Dockerfile
@@ -2,16 +2,16 @@ FROM alpine:latest
2
3
# Container options (For layer optim)
4
WORKDIR /app
5
-ENTRYPOINT ["python", "/app/cassh"]
+ENTRYPOINT ["python3", "/app/cassh"]
6
CMD ["--help"]
7
8
# Install dependencies
9
RUN apk update \
10
&& apk add \
11
- py2-pip
+ py3-pip
12
13
COPY requirements.txt ./
14
RUN pip install --no-cache-dir -r requirements.txt
15
16
# Include code
17
-COPY cassh ./cassh
+COPY cassh ./cassh
0 commit comments