diff --git a/front/Dockerfile b/front/Dockerfile index 6fdc533e..c3ba6fea 100644 --- a/front/Dockerfile +++ b/front/Dockerfile @@ -5,6 +5,8 @@ COPY package.json bun.lock . RUN bun install --production COPY . . -RUN bun build + +EXPOSE 8081 +CMD ["bun", "dev"] # TODO: Actually do something there, either nginx or preferably an ssr bun serv