* Add docker environment * Add document of docker * Move docker files * Change context * Move git submodule command to entrypoint.sh * Update README
14 lines
293 B
Docker
14 lines
293 B
Docker
FROM nimlang/nim:1.2.6-ubuntu
|
|
|
|
RUN apt-get update -yqq \
|
|
&& apt-get install -y --no-install-recommends \
|
|
libsass-dev \
|
|
sqlite3 \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
# install dependencies
|
|
RUN nimble install -Y
|