mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-21 17:33:29 +01:00
17 lines
283 B
Docker
17 lines
283 B
Docker
FROM node:16-bullseye
|
|
|
|
LABEL maintainer=simojenki
|
|
|
|
ENV JEST_TIMEOUT=60000
|
|
EXPOSE 4534
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y upgrade && \
|
|
apt-get -y install --no-install-recommends \
|
|
libvips-dev \
|
|
python3 \
|
|
make \
|
|
git \
|
|
g++ \
|
|
vim
|