Proposition de refonte du site web de la coopérative basée sur le générateur de site statique Gatsby.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415
  1. FROM node:16-bullseye
  2. WORKDIR /app
  3. COPY package.json ./
  4. RUN cat ./package.json
  5. RUN yarn install
  6. COPY . ./
  7. RUN yarn gatsby telemetry --disable
  8. RUN yarn build
  9. RUN rm -rf ./src
  10. EXPOSE 9000
  11. CMD yarn serve -H 0.0.0.0 -p 9000