Add CI #1
19
.woodpecker.yml
Normal file
19
.woodpecker.yml
Normal file
@ -0,0 +1,19 @@
|
||||
steps:
|
||||
build-static:
|
||||
image: "node:20"
|
||||
commands:
|
||||
- npm install
|
||||
- npm run build
|
||||
build-docker:
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
secrets:
|
||||
- docker_username
|
||||
- docker_password
|
||||
settings:
|
||||
registry: docker.grondek.pl
|
||||
repo: docker.grondek.pl/react-homepage
|
||||
auto_tag: true
|
||||
tags: latest
|
||||
platforms: linux/arm64
|
||||
when:
|
||||
event: tag
|
8
Dockerfile
Normal file
8
Dockerfile
Normal file
@ -0,0 +1,8 @@
|
||||
FROM nginx:1.24.0-alpine
|
||||
|
||||
ENV NODE_ENV production
|
||||
|
||||
RUN rm -rf /usr/share/nginx/html/*
|
||||
|
||||
COPY out /usr/share/nginx/html/
|
||||
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
|
9
docker/nginx.conf
Normal file
9
docker/nginx.conf
Normal file
@ -0,0 +1,9 @@
|
||||
server {
|
||||
listen 80;
|
||||
|
||||
location / {
|
||||
root /usr/share/nginx/html/;
|
||||
include /etc/nginx/mime.types;
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
@ -1,5 +1,6 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
output: 'export',
|
||||
reactStrictMode: true,
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user