console/docker/migrations.dockerfile
renovate[bot] 3e34af29e1
chore(deps): update node.js to v18.16.1 (#2516)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-06-25 13:31:19 +03:00

9 lines
159 B
Docker

FROM node:18.16.1-slim
WORKDIR /usr/src/app
COPY . /usr/src/app/
ENV ENVIRONMENT production
ENV NODE_ENV production
CMD ["npm", "run", "db:migrator", "up"]