-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: getting the frontend build pipeline working with pnpm (#94)
* build: getting the frontend build pipeline working with pnpm * chore: update Dockerfile and GitHub actions * doc: add Jessica Sachs to contributor list A BIG THANK YOU! --------- Co-authored-by: nanmu42 <[email protected]>
- Loading branch information
1 parent
5d8faad
commit 9cbfb24
Showing
11 changed files
with
10,919 additions
and
9,182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,13 @@ | ||
FROM golang:alpine3.17 as golang | ||
RUN apk --no-cache add make git tar tzdata ca-certificates nodejs=16.15.1 yarn wget | ||
FROM golang:alpine3.20 as golang | ||
RUN apk --no-cache add make git tar tzdata ca-certificates nodejs=20.13.1-r0 wget xz | ||
RUN wget -qO /bin/pnpm "https://github.com/pnpm/pnpm/releases/latest/download/pnpm-linuxstatic-x64" && chmod +x /bin/pnpm | ||
|
||
WORKDIR /app | ||
COPY . . | ||
RUN mkdir -p assets && \ | ||
cd assets && \ | ||
wget -nc https://github.com/nanmu42/orly/releases/download/1.5.0-beta/cover-images.tar.xz && \ | ||
wget -nc https://github.com/nanmu42/orly/releases/download/1.1.0-beta/fonts.tar.xz | ||
RUN make assets | ||
RUN make all | ||
|
||
FROM alpine:3.17 | ||
FROM alpine3.20 | ||
# Maintainer Info | ||
LABEL maintainer="nanmu42<[email protected]>" | ||
# Dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
node-options=--openssl-legacy-provider | ||
node-linker=hoisted |
Oops, something went wrong.