Update Dockerfile
Trying again with trailing slashes
This commit is contained in:
parent
c14bd1d578
commit
0a8535fed9
1 changed files with 4 additions and 4 deletions
|
@ -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"]
|
Loading…
Reference in a new issue