mirror of
https://github.com/apotdevin/thunderhub.git
synced 2024-11-19 09:50:03 +01:00
35 lines
726 B
Docker
35 lines
726 B
Docker
# ---------------
|
|
# Install Dependencies
|
|
# ---------------
|
|
FROM arm32v7/node:12.16-alpine as build
|
|
|
|
# Install dependencies neccesary for node-gyp on node alpine
|
|
RUN apk add --update --no-cache \
|
|
python \
|
|
make \
|
|
g++
|
|
|
|
# Install app dependencies
|
|
COPY package.json .
|
|
COPY package-lock.json .
|
|
RUN npm install --production --silent
|
|
|
|
# Install dependencies necessary for build and start
|
|
RUN npm install -D cross-env typescript @types/react @next/bundle-analyzer
|
|
|
|
# ---------------
|
|
# Build App
|
|
# ---------------
|
|
FROM arm32v7/node:12.16-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy dependencies from build stage
|
|
COPY --from=build node_modules node_modules
|
|
|
|
# Bundle app source
|
|
COPY . .
|
|
RUN npm run build
|
|
EXPOSE 3000
|
|
|
|
CMD [ "npm", "start" ] |