1
0
Fork 0
githubbot/Dockerfile

11 lines
177 B
Docker
Raw Normal View History

2019-10-04 17:59:37 +08:00
FROM maxmcd/deno
COPY . .
RUN deno fetch server.ts
EXPOSE 8080
ENV LISTEN=0.0.0.0:8080
CMD ["deno", "--allow-env", "--allow-net=0.0.0.0:8080,api.telegram.org", "server.ts"]