24 lines
510 B
Docker
24 lines
510 B
Docker
|
|
# Build miniPaint from GitHub repository
|
||
|
|
FROM node:18-alpine AS builder
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
# Clone the repository
|
||
|
|
RUN apk add --no-cache git && \
|
||
|
|
git clone https://github.com/viliusle/miniPaint.git . && \
|
||
|
|
npm install && \
|
||
|
|
npm run build
|
||
|
|
|
||
|
|
# Production stage with nginx
|
||
|
|
FROM nginx:alpine
|
||
|
|
|
||
|
|
# Copy built files from builder
|
||
|
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
||
|
|
|
||
|
|
# Copy nginx configuration if needed
|
||
|
|
COPY --from=builder /app /usr/share/nginx/html
|
||
|
|
|
||
|
|
EXPOSE 80
|
||
|
|
|
||
|
|
CMD ["nginx", "-g", "daemon off;"]
|