embeddingcpp/Dockerfile
Erki e4aacb1ed0
Some checks failed
Build and push latest / publish (push) Failing after 42s
More CI testing
2024-10-01 22:13:37 +03:00

20 lines
299 B
Docker

FROM alpine:3.20 AS build
RUN apk add --update hugo
WORKDIR /opt/hugoapp
COPY . .
RUN hugo
FROM nginx:1.27.1-alpine
WORKDIR /usr/share/nginx/html
COPY --from=build /opt/hugoapp/public .
RUN ls -ahl /usr/share/nginx/media/
RUN stat /usr/share/nginx/media/stm32begin-001-007.png
EXPOSE 80/tcp