Skip to content

Commit

Permalink
feat(dockerfile): add manintener on dockerimage
Browse files Browse the repository at this point in the history
  • Loading branch information
ikr4-m committed Jul 24, 2024
1 parent 6f16d33 commit 9e7a6dd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine as build
LABEL org.opencontainers.image.authors="Ikramullah <[email protected]>"
WORKDIR /app
COPY . .

Expand All @@ -7,6 +8,7 @@ RUN set -ex; \
dotnet publish --no-restore -c Release -o ./Application

FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine-composite
LABEL org.opencontainers.image.authors="Ikramullah <[email protected]>"
WORKDIR /app

COPY --from=build /app/Application /app
Expand Down
1 change: 1 addition & 0 deletions tunnel_image/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM docker.io/library/alpine:latest
LABEL org.opencontainers.image.authors="Ikramullah <[email protected]>,Syahrial Agni Prasetya <[email protected]>"

RUN set -ex; \
apk update; \
Expand Down

0 comments on commit 9e7a6dd

Please sign in to comment.