build stuff

This commit is contained in:
2026-02-20 16:19:18 +01:00
parent 24b84a73e7
commit fe756295df
4 changed files with 34 additions and 2 deletions

6
.dockerignore Normal file
View File

@@ -0,0 +1,6 @@
node_modules
dist
.git
.gitignore
Dockerfile
README.md

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM oven/bun:1 AS builder
WORKDIR /app
COPY package.json bun.lock ./
RUN bun install --frozen-lockfile
COPY . .
RUN bun run build
FROM nginx:1.27-alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=builder /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]

11
nginx.conf Normal file
View File

@@ -0,0 +1,11 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}

View File

@@ -151,5 +151,5 @@ scene("game", (scravatar: string) => {
});
});
// pushScene("menu");
pushScene("game", "wolfi");
pushScene("menu");
// pushScene("game", "wolfi");