Skip to content

Commit

Permalink
Merge pull request #227 from PysioHub/main
Browse files Browse the repository at this point in the history
fix: Docker Build
  • Loading branch information
pysio2007 authored Dec 13, 2024
2 parents a1c4f0b + da8275e commit 441a29f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
FROM node:23 AS builder
FROM node:22-alpine AS builder
WORKDIR ./
COPY . .
RUN apk add --no-cache \
python3 \
make \
g++ \
gcc
RUN npm install
RUN npm run docs:build
RUN ls
Expand Down

0 comments on commit 441a29f

Please sign in to comment.