mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-16 23:35:20 +01:00
6c664ee993
This commit update the base photon image from vmware/photon:1.0 to photon:1.0, per suggestion by photon team.
16 lines
367 B
Docker
16 lines
367 B
Docker
FROM photon:1.0
|
|
|
|
RUN tdnf distro-sync -y \
|
|
&& tdnf install -y redis sudo
|
|
|
|
VOLUME /var/lib/redis
|
|
WORKDIR /var/lib/redis
|
|
COPY docker-entrypoint.sh /usr/bin/
|
|
COPY redis.conf /etc/redis.conf
|
|
RUN chmod +x /usr/bin/docker-entrypoint.sh \
|
|
&& chown redis:redis /etc/redis.conf
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
|
|
|
EXPOSE 6379
|
|
CMD ["redis-server", "/etc/redis.conf"]
|