Skip to content

Commit

Permalink
Fix base images' URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Gouache committed Nov 15, 2023
1 parent 0838d0f commit 1b45031
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
# Build stage
FROM dockerproxy.repos.tech.orange/golang:1.17.3 as build
FROM golang:1.17.3 as build

LABEL Maintainer="[email protected]" \
Name="docker-khiops" \
Version="0.1.1" \
Description="Server for controlling Khiops" \
Url="https://gitlab.tech.orange/khiops/server"
LABEL maintainer="Khiops Team <[email protected]>"

RUN apt-get update && \
apt-get install --no-install-recommends -y upx-ucl && \
Expand All @@ -26,7 +22,7 @@ RUN useradd -rm -d /home/ubuntu -s /bin/bash ubuntu
USER ubuntu

# Runtime stage
FROM dockerproxy.repos.tech.orange/busybox:glibc as runtime
FROM busybox:glibc as runtime
COPY --from=build /service /service

ENTRYPOINT ["/service"]
Binary file added service
Binary file not shown.

0 comments on commit 1b45031

Please sign in to comment.