Skip to content

Commit 23fb765

Browse files
author
Nicolas Béguier
committed
Upgrade python3 Dockerfile for cassh-client
1 parent f81fbca commit 23fb765

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/client/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ FROM alpine:latest
22

33
# Container options (For layer optim)
44
WORKDIR /app
5-
ENTRYPOINT ["python", "/app/cassh"]
5+
ENTRYPOINT ["python3", "/app/cassh"]
66
CMD ["--help"]
77

88
# Install dependencies
99
RUN apk update \
1010
&& apk add \
11-
py2-pip
11+
py3-pip
1212

1313
COPY requirements.txt ./
1414
RUN pip install --no-cache-dir -r requirements.txt
1515

1616
# Include code
17-
COPY cassh ./cassh
17+
COPY cassh ./cassh

0 commit comments

Comments
 (0)