mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
* Update k8s dependencies to v0.26.2 * Update controller-runtime to v0.14.6 * Update cloud storage https://github.com/googleapis/google-cloud-go/issues/6857 * Update copy options * Update wolfi image * Remove controller-runtime replace directives * Fix integration tests
10 lines
326 B
Docker
10 lines
326 B
Docker
FROM cgr.dev/chainguard/wolfi-base@sha256:a7db49b55bd97c12cd686272325bbac236830111db336e084b89f5c816ab0537
|
|
|
|
# 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" ]
|