mirror of
https://github.com/Cameri/nostream.git
synced 2025-03-20 06:41:46 +01:00
18 lines
356 B
Docker
18 lines
356 B
Docker
FROM node:18-alpine3.16
|
|
|
|
ENV DB_HOST=db-test
|
|
ENV DB_PORT=5432
|
|
ENV DB_NAME=postgres
|
|
ENV DB_USER=postgres
|
|
ENV DB_PASSWORD=postgres
|
|
ENV DB_MIN_POOL_SIZE=1
|
|
ENV DB_MAX_POOL_SIZE=2
|
|
|
|
WORKDIR /code
|
|
|
|
COPY ["package.json", "package-lock.json", ".nycrc.json", ".mocharc.js", "cucumber.js", "tsconfig.json", "knexfile.js", "./"]
|
|
|
|
RUN npm install --quiet
|
|
|
|
CMD ["true"]
|