Update Dockerfile

Trying again with trailing slashes
This commit is contained in:
Gordon Pedersen 2023-11-12 23:39:48 +00:00
parent c14bd1d578
commit 0a8535fed9

View file

@ -1,11 +1,11 @@
FROM oven/bun:latest FROM oven/bun:latest
WORKDIR /app WORKDIR /app/
COPY ./package.json /app COPY ./package.json /app/
COPY ./bun.lockb /app COPY ./bun.lockb /app/
RUN bun install RUN bun install
ADD . /app ADD ./* /app/
CMD [ "bun", "run", "/app/src/index.ts"] CMD [ "bun", "run", "/app/src/index.ts"]