scaffold unprompted site: eleventy, templates, gitea CI
Some checks failed
Deploy to S3 / deploy (push) Failing after 1m26s
Some checks failed
Deploy to S3 / deploy (push) Failing after 1m26s
This commit is contained in:
10
Dockerfile
Normal file
10
Dockerfile
Normal file
@@ -0,0 +1,10 @@
|
||||
FROM node:22-alpine AS build
|
||||
WORKDIR /app
|
||||
COPY package.json yarn.lock* ./
|
||||
RUN yarn install --frozen-lockfile 2>/dev/null || yarn install
|
||||
COPY . .
|
||||
RUN yarn build
|
||||
|
||||
FROM alpine:3.20
|
||||
RUN apk add --no-cache aws-cli
|
||||
COPY --from=build /app/_site /site
|
||||
Reference in New Issue
Block a user