Skip to content

Commit

Permalink
Merge pull request #1065 from joshunrau/openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
joshunrau authored Dec 19, 2024
2 parents 37117fe + 2f15c58 commit dd2a2d5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion apps/api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM node:20-alpine3.16 AS base
FROM node:iron-alpine AS base
RUN apk add --update --no-cache openssl1.1-compat
WORKDIR /app
ARG RELEASE_VERSION
ENV GATEWAY_DATABASE_URL="file:/dev/null"
Expand Down
3 changes: 2 additions & 1 deletion apps/gateway/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM node:20-alpine3.16 AS base
FROM node:iron-alpine AS base
RUN apk add --update --no-cache openssl1.1-compat
WORKDIR /app
ARG RELEASE_VERSION
ENV GATEWAY_DATABASE_URL=file:/app/sqlite/gateway.db
Expand Down
3 changes: 2 additions & 1 deletion apps/web/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM node:20-alpine3.16 AS base
FROM node:iron-alpine AS base
RUN apk add --update --no-cache openssl1.1-compat
ARG RELEASE_VERSION
WORKDIR /app
ENV PNPM_HOME="/pnpm"
Expand Down

0 comments on commit dd2a2d5

Please sign in to comment.