-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
36 lines (22 loc) · 723 Bytes
/
Dockerfile
File metadata and controls
36 lines (22 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
FROM node:18-alpine3.16 as build
WORKDIR /build
COPY ["package.json", "package-lock.json", "./"]
RUN npm install --quiet
COPY . .
RUN npm run build
FROM node:18-alpine3.16
LABEL org.opencontainers.image.title="Nostream"
LABEL org.opencontainers.image.source=https://github.com/Cameri/nostream
LABEL org.opencontainers.image.description="nostream"
LABEL org.opencontainers.image.authors="Ricardo Arturo Cabral Mejía"
LABEL org.opencontainers.image.licenses=MIT
ENV DB_HOST=localhost
ENV DB_PORT=5432
ENV DB_NAME=nostr-ts-relay
ENV DB_USER=nostr-ts-relay
ENV DB_PASSWORD=nostr-ts-relay
WORKDIR /app
COPY --from=build /build/dist .
RUN npm install --omit=dev --quiet
USER 1000:1000
CMD ["node", "src/index.js"]