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 |
- FROM node:16-bullseye
-
- WORKDIR /app
- COPY package.json ./
- RUN cat ./package.json
- RUN yarn install
-
- COPY . ./
- RUN yarn gatsby telemetry --disable
- RUN yarn build
- RUN rm -rf ./src
-
- EXPOSE 9000
-
- CMD yarn serve -H 0.0.0.0 -p 9000
|