Skip to content

Commit

Permalink
updated as casing and workflow on push
Browse files Browse the repository at this point in the history
  • Loading branch information
Jens Plüddemann committed Oct 24, 2024
1 parent c1dc203 commit 1f37e95
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .github/workflows/provide-docker-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Provide needed docker images in ghcr.io

on:
workflow_dispatch:
push:

env:
REGISTRY_IMAGE: ghcr.io/novatecconsulting/opentelemetry-training
Expand Down
8 changes: 4 additions & 4 deletions tutorial/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM golang:1.21-alpine as base
FROM golang:1.21-alpine AS base

RUN apk add --update --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community \
bash \
hugo

FROM base as rt-dev
FROM base AS rt-dev

WORKDIR /workspace

Expand All @@ -13,7 +13,7 @@ COPY --chmod=0755 entrypoint.sh /tmp
CMD [ "sh", "-c", "/tmp/entrypoint.sh" ]


FROM base as builder
FROM base AS builder

WORKDIR /opt/app

Expand All @@ -24,7 +24,7 @@ RUN wget -qO- https://github.com/McShelby/hugo-theme-relearn/archive/main.zip |
RUN hugo


FROM nginx:1.25-alpine as rt
FROM nginx:1.25-alpine AS rt

ARG USER=otel

Expand Down

0 comments on commit 1f37e95

Please sign in to comment.