corso/docs/Dockerfile
Niraj Tolia ad15968837
Add docs template (#40)
* Add Dockerfile and Makefile for docs

* New Docusaurus project

* Remove blog from docs

* Add missing package-lock.json

* .PHONY
2022-05-16 22:44:49 -07:00

16 lines
388 B
Docker

FROM ubuntu:22.04
LABEL MAINTAINER="Niraj Tolia"
ARG DEBIAN_FRONTEND=noninteractive
WORKDIR /usr/src/docs
RUN apt-get -y update && apt-get -y install gpg emacs curl \
&& curl -fsSL https://deb.nodesource.com/setup_current.x | bash - \
&& apt-get -y install nodejs \
&& apt-get autoclean \
&& node --version \
&& npm --version
CMD ["npm", "start", "--", "--host", "0.0.0.0"]