Skip to content

Commit

Permalink
💚 Use ubuntu image instead of alpine for Deno
Browse files Browse the repository at this point in the history
  • Loading branch information
5ika committed Aug 18, 2023
1 parent 8fc54f8 commit e86d3f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM denoland/deno:alpine-1.35.2 AS build
FROM denoland/deno:ubuntu-1.35.2 AS build

WORKDIR /app
COPY ./demo .
Expand All @@ -7,7 +7,7 @@ WORKDIR /app/demo
RUN yarn
RUN yarn build

FROM denoland/deno:alpine-1.35.2
FROM denoland/deno:ubuntu-1.35.2

WORKDIR /app
COPY ./server-example .
Expand Down
2 changes: 1 addition & 1 deletion server-example/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM denoland/deno:alpine-1.35.2
FROM denoland/deno:ubuntu-1.35.2

WORKDIR /app
COPY . .
Expand Down

0 comments on commit e86d3f1

Please sign in to comment.