mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-12-25 20:45:24 +00:00
14 lines
142 B
Docker
14 lines
142 B
Docker
FROM node:alpine
|
|
|
|
EXPOSE 8081
|
|
|
|
COPY ./docs /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apk add --no-cache curl
|
|
|
|
RUN npm install http-server
|
|
|
|
CMD ["npm", "start"]
|