f59c66d
c2ecff8
f59c66d
c2ecff8 | | 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"] |