mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-11-15 04:13:07 +00:00
12 lines
113 B
Docker
12 lines
113 B
Docker
FROM node:alpine
|
|
|
|
EXPOSE 8081
|
|
|
|
COPY ./docs /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN npm install http-server
|
|
|
|
CMD ["npm", "start"]
|