You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wiki/dev/containers/Dockerfile

22 lines
440 B

# -- DEV DOCKERFILE --
# -- DO NOT USE IN PRODUCTION! --
FROM node:20
LABEL maintainer="requarks.io"
RUN apt-get update && \
apt-get install -y --no-install-recommends bash curl git python3 make g++ nano openssh-server gnupg && \
apt-get upgrade -y && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
mkdir -p /wiki
WORKDIR /wiki
ENV dockerdev=1
ENV DEVDB=postgres
EXPOSE 3000
CMD ["tail", "-f", "/dev/null"]