funkwhale/front/Dockerfile.dev

27 wiersze
637 B
Docker
Czysty Zwykły widok Historia

FROM node:22-alpine
2022-06-30 12:10:19 +00:00
# needed to compile translations
RUN apk add --no-cache jq bash coreutils git python3
2022-06-30 12:10:19 +00:00
WORKDIR /app/
# Create node_modules directory to prevent it from being hidden by volume mounts
RUN mkdir -p node_modules
ADD scripts/ ./scripts/
2022-06-30 12:10:19 +00:00
ADD package.json yarn.lock ./
RUN yarn
2022-06-30 12:10:19 +00:00
VOLUME /app
VOLUME /app/node_modules
EXPOSE 8080
2022-06-30 12:10:19 +00:00
<<<<<<< HEAD
CMD ["yarn", "dev", "--host"]
=======
CMD ["yarn", "serve"]
HEALTHCHECK --start-period=30s --interval=10s --timeout=5s \
CMD wget --no-verbose --tries=1 --spider http://localhost:8080/ || exit 1
>>>>>>> afceb5bf3 (chore(compose): dependencies, environments and healthchecks)