Files
tsd_test/images/vuecli/Dockerfile
adminps_pv 4df494767b
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 6m48s
c4
2026-03-25 14:11:55 +00:00

19 lines
327 B
Docker
Executable File

FROM ubuntu:latest
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y nodejs npm && rm -rf /var/lib/apt/lists/*
RUN npm install -g yarn
WORKDIR /srv/app
#COPY app/package*.json ./
RUN yarn global add @vue/cli
RUN yarn install
# Bundle app source
#COPY ./app .
EXPOSE 8080
#CMD [ "yarn", "serve"]