mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-06 10:44:36 +01:00
1f5a9cdee8
1)Fix a syntax error in clair Dockerfile 2)Fix permission issue in database migrator image.
15 lines
371 B
Docker
15 lines
371 B
Docker
FROM vmware/mariadb-photon:10.2.8
|
|
|
|
RUN tdnf distro-sync -y \
|
|
&& tdnf install -y mariadb-devel python2 python2-devel python-pip gcc \
|
|
linux-api-headers glibc-devel binutils zlib-devel openssl-devel \
|
|
&& pip install mysqlclient alembic \
|
|
&& tdnf clean all \
|
|
&& mkdir -p /harbor-migration
|
|
|
|
WORKDIR /harbor-migration
|
|
|
|
COPY ./ ./
|
|
|
|
ENTRYPOINT ["./run.sh"]
|