Blame view

Dockerfile 419 Bytes
d8ab687c   Liu Haoyu   ftp文件监听服务创建
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  FROM ubuntu:18.04
  
  ENV LANG C.UTF-8
  ENV TZ=Asia/Shanghai
  # Set time zone
  RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo '$TZ' > /etc/timezone
  RUN mkdir /data
  WORKDIR /data
  COPY mc /usr/sbin/
  COPY docker-entrypoint.sh /usr/sbin/docker-entrypoint.sh
  COPY mc_watcher.sh /usr/sbin/mc_watcher.sh
  RUN chmod +x /usr/sbin/mc_watcher.sh
  RUN chmod +x /usr/sbin/docker-entrypoint.sh
  ENTRYPOINT ["docker-entrypoint.sh"]