mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-03 23:09:17 -05:00
14 lines
290 B
Docker
14 lines
290 B
Docker
FROM node:lts-alpine
|
|
|
|
# Create the docs website directory
|
|
COPY . /verdaccio-website
|
|
|
|
WORKDIR /verdaccio-website/website
|
|
|
|
RUN apk add --no-cache -t build-deps make gcc g++ python libtool autoconf automake && \
|
|
yarn install && \
|
|
apk del build-deps
|
|
|
|
EXPOSE 3000
|
|
|
|
CMD ["yarn", "start"]
|