mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
16 lines
206 B
Docker
16 lines
206 B
Docker
FROM node:20-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Install PostgreSQL client for pg_recvlogical
|
|
RUN apk add --no-cache postgresql-client
|
|
|
|
COPY package.json ./
|
|
RUN npm install
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8080
|
|
|
|
CMD ["npm", "start"]
|