mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
13 lines
185 B
Text
13 lines
185 B
Text
|
FROM node:18.17.0-bookworm-slim
|
||
|
|
||
|
ENV DEBIAN_FRONTEND noninteractive
|
||
|
ENV TZ="Europe/Paris"
|
||
|
ENV LC_ALL fr_FR.UTF-8
|
||
|
|
||
|
WORKDIR /portal
|
||
|
COPY . .
|
||
|
|
||
|
RUN yarn install
|
||
|
|
||
|
RUN mkdir -p /portal/.nuxt
|