mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
12 lines
185 B
Docker
12 lines
185 B
Docker
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
|