Files
gtun/docker-build/gtund/Dockerfile
2024-04-05 22:14:14 +08:00

6 lines
160 B
Docker

FROM ubuntu:20.04
RUN mkdir -p /opt/apps/gtund/logs
COPY . /opt/apps/gtund
COPY start.sh /
RUN chmod +x start.sh && chmod +x /opt/apps/gtund/gtund
CMD /start.sh