Skip to content

Commit

Permalink
prisma-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinmamaqi committed Dec 13, 2024
1 parent 974a0ac commit 4213359
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions services/wiki/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stage 1: Building the application
FROM node:18.17.1-alpine AS builder
FROM node:18-slim AS builder
RUN apk add --no-cache libc6-compat python3 make g++ && \
if [ ! -e /usr/bin/python ]; then ln -s /usr/bin/python3 /usr/bin/python; fi
ENV PYTHON=/usr/bin/python
Expand All @@ -19,7 +19,7 @@ COPY package*.json ./
RUN npm ci --only=production

# Stage 3: Running the application
FROM node:18.17.1-alpine
FROM node:18-slim
RUN apk add --no-cache openssl1.1-compat
WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion services/wiki/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "service_wiki",
"private": true,
"version": "0.18.6",
"version": "0.26.0",
"prisma": {
"seed": "tsx prisma/seed.ts"
},
Expand Down

0 comments on commit 4213359

Please sign in to comment.