Okayaq / Dockerfile
Aqso's picture
Update Dockerfile
c2ecff8 verified
raw
history blame contribute delete
263 Bytes
FROM node:lts-bullseye-slim
RUN apt-get update && apt-get install -y \
bash \
curl \
sudo \
&& rm -rf /var/lib/apt/lists/*
RUN npm install -g wetty
WORKDIR /app
EXPOSE 7860
CMD ["wetty", "--port", "7860", "--base", "/", "--force-https", "false"]