Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Gitlab CI Job Merge Request Create
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tools
Docker
Gitlab CI Job Merge Request Create
Merge requests
!3
Update Dockerfile
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Update Dockerfile
zimniy-main-patch-93431
into
main
Overview
0
Commits
1
Pipelines
2
Changes
1
Merged
Update Dockerfile
Dmitriy Safronov
requested to merge
zimniy-main-patch-93431
into
main
Jun 5, 2024
Overview
0
Commits
1
Pipelines
2
Changes
1
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
d0e66ba2
1 commit,
Jun 5, 2024
1 file
+
7
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Dockerfile
+
7
−
1
View file @ d0e66ba2
Edit in single-file editor
Open in Web IDE
Show full file
ARG
DOCKER_REGISTRY=registry.cyberbrain.pw
ARG
DOCKER_REGISTRY=registry.cyberbrain.pw
FROM
$DOCKER_REGISTRY/tools/docker/alpine:latest
ARG
ALPINE_IMAGE=tools/docker/alpine/main
ARG
ALPINE_TAG=latest
FROM
$DOCKER_REGISTRY/$ALPINE_IMAGE:$ALPINE_TAG
AS
runtime
RUN
set
-ex
&&
\
RUN
set
-ex
&&
\
apk
--no-cache
add bash curl jq
&&
\
apk
--no-cache
add bash curl jq
&&
\
@@ -8,3 +12,5 @@ RUN set -ex && \
@@ -8,3 +12,5 @@ RUN set -ex && \
COPY
entrypoint.sh /entrypoint.sh
COPY
entrypoint.sh /entrypoint.sh
ENTRYPOINT
[ "bash", "/entrypoint.sh" ]
ENTRYPOINT
[ "bash", "/entrypoint.sh" ]
FROM
runtime
AS
release
Loading