mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-04 17:49:48 +01:00
3d09089a9c
Make necessary change to make things work with photon 2.0 docker image. Remove distro-sync to mitigate the build issue and add `--pull` to docker build command to make sure the latest photon:2.0 will be pulled during build process. Signed-off-by: Daniel Jiang <jiangd@vmware.com>
15 lines
378 B
Docker
15 lines
378 B
Docker
FROM photon:2.0
|
|
|
|
RUN tdnf install -y redis sudo
|
|
|
|
VOLUME /var/lib/redis
|
|
WORKDIR /var/lib/redis
|
|
COPY ./make/photon/redis/docker-entrypoint.sh /usr/bin/
|
|
COPY ./make/photon/redis/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"]
|