File size: 263 Bytes
f59c66d
 
 
 
 
 
c2ecff8
f59c66d
 
 
 
 
 
 
c2ecff8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"]