Initial website deployment
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 1m44s
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 1m44s
This commit is contained in:
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM ghcr.io/gohugoio/hugo:v0.163.3 AS build
|
||||
|
||||
WORKDIR /src
|
||||
COPY . .
|
||||
RUN hugo --minify --cleanDestinationDir
|
||||
|
||||
FROM nginx:1.27-alpine
|
||||
|
||||
COPY --from=build /src/public /usr/share/nginx/html
|
||||
EXPOSE 80
|
||||
Reference in New Issue
Block a user