mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
9 lines
235 B
Docker
9 lines
235 B
Docker
FROM alpine:3.16
|
|
|
|
# Ensure latest packages are present, like security updates.
|
|
RUN apk upgrade --no-cache \
|
|
&& apk add --no-cache ca-certificates
|
|
|
|
COPY ws-manager /app/ws-manager
|
|
ENTRYPOINT [ "/app/ws-manager" ]
|
|
CMD [ "-v", "help" ] |