salix-front/test/cypress/db/Dockerfile

20 lines
355 B
Docker
Raw Normal View History

2024-10-04 10:08:47 +00:00
FROM node:lts-bookworm
ENV SHELL bash
ENV PNPM_HOME="/pnpm"
ENV PATH="$PNPM_HOME:$PATH"
RUN apt-get update
RUN apt install libkrb5-dev libssl-dev
2024-10-04 10:08:47 +00:00
RUN npm install -g pnpm@8.15.1
RUN pnpm setup
RUN npm i -g pnpm
WORKDIR /salix
2024-10-04 10:08:47 +00:00
COPY salix/db db
COPY salix/myt.config.yml .
COPY salix/.git .git
2024-10-02 13:20:54 +00:00
2024-10-04 11:00:12 +00:00
# COPY node_modules node_modules
RUN pnpm i @verdnatura/myt
2024-10-02 13:20:54 +00:00