mirror of
https://github.com/pockethost/pockethost.git
synced 2025-05-28 09:46:46 +00:00
8 lines
261 B
Plaintext
8 lines
261 B
Plaintext
FROM node:18-alpine as pockethost-buildbox
|
|
COPY --from=golang:1.19-alpine /usr/local/go/ /usr/local/go/
|
|
ENV PATH="/usr/local/go/bin:${PATH}"
|
|
RUN apk add python3 py3-pip make gcc musl-dev g++ bash
|
|
WORKDIR /src
|
|
COPY . .
|
|
RUN yarn --verbose
|
|
RUN yarn build --verbose |