Compare commits

...

6 Commits

Author SHA1 Message Date
795df16f5b revert dockerfile
All checks were successful
CI / build (push) Successful in 12s
CI / lint (push) Successful in 7s
CI / build-and-push-docker (push) Successful in 36s
2025-08-29 14:37:34 +02:00
55af06c573 revert dockerfile
All checks were successful
CI / build (push) Successful in 14s
CI / lint (push) Successful in 9s
CI / build-and-push-docker (push) Successful in 36s
2025-08-29 14:34:59 +02:00
a05eb48143 ci test
All checks were successful
CI / build (push) Successful in 13s
CI / lint (push) Successful in 7s
CI / build-and-push-docker (push) Successful in 12s
2025-08-29 14:32:02 +02:00
86e301cad6 fix typo in dockerfile
All checks were successful
CI / build (push) Successful in 13s
CI / lint (push) Successful in 7s
CI / build-and-push-docker (push) Successful in 18s
2025-08-29 14:28:36 +02:00
ae4b2b6179 fix dockerfile
Some checks failed
CI / build (push) Successful in 12s
CI / lint (push) Successful in 8s
CI / build-and-push-docker (push) Failing after 11s
2025-08-29 14:27:38 +02:00
8ffb850322 fix dockerfile
All checks were successful
CI / build (push) Successful in 20s
CI / lint (push) Successful in 8s
CI / build-and-push-docker (push) Successful in 54s
2025-08-29 14:21:52 +02:00
2 changed files with 6 additions and 5 deletions

View File

@@ -1,8 +1,9 @@
FROM nginx:latest
FROM oven/bun:latest
WORKDIR /app
COPY ./build/* /usr/share/nginx/html/
COPY . .
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]
RUN bun install
CMD ["bun", "run", "dev", "--host"]