Compare commits
15 Commits
main
..
76fae3a73b
| Author | SHA1 | Date | |
|---|---|---|---|
| 76fae3a73b | |||
| 6c436be847 | |||
| 2f058981a6 | |||
| 03bbb76a2c | |||
| 48c17799bc | |||
| 143823f953 | |||
| 9650d8a243 | |||
| bd6f3daa73 | |||
| 4655e56820 | |||
| 73f094b72d | |||
| 9efb5ad3ac | |||
| fe11c9a1cc | |||
| da9b354e4c | |||
| c580d069b1 | |||
| 0001f72635 |
@@ -1,5 +0,0 @@
|
||||
.git
|
||||
.worktrees
|
||||
dist
|
||||
node_modules
|
||||
*.log
|
||||
-16
@@ -1,16 +0,0 @@
|
||||
FROM oven/bun:1.3.11-alpine AS build
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY package.json index.html tsconfig.json ./
|
||||
COPY scripts ./scripts
|
||||
COPY src ./src
|
||||
|
||||
RUN bun run build
|
||||
|
||||
FROM nginxinc/nginx-unprivileged:1.29.4-alpine
|
||||
|
||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||
COPY --from=build /app/dist /usr/share/nginx/html
|
||||
|
||||
EXPOSE 8080
|
||||
-28
@@ -1,28 +0,0 @@
|
||||
server {
|
||||
listen 8080;
|
||||
server_name _;
|
||||
absolute_redirect off;
|
||||
port_in_redirect off;
|
||||
|
||||
root /usr/share/nginx/html;
|
||||
index index.html;
|
||||
|
||||
location = /healthz {
|
||||
access_log off;
|
||||
default_type text/plain;
|
||||
return 200 "ok\n";
|
||||
}
|
||||
|
||||
location = /index.html {
|
||||
add_header Cache-Control "no-cache, must-revalidate";
|
||||
}
|
||||
|
||||
location ~* \.(?:css|js)$ {
|
||||
try_files $uri =404;
|
||||
add_header Cache-Control "public, max-age=31536000, immutable";
|
||||
}
|
||||
|
||||
location / {
|
||||
try_files $uri $uri/ /index.html;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user