mirror of
https://github.com/ICKelin/gtun.git
synced 2025-09-26 19:11:15 +08:00
6 lines
160 B
Docker
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 |