mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
12 lines
268 B
Docker
12 lines
268 B
Docker
FROM humanconnection/neo4j:latest
|
|
|
|
ENV NODE_ENV=maintenance
|
|
EXPOSE 7687 7474
|
|
|
|
RUN apk upgrade --update
|
|
RUN apk add --no-cache mongodb-tools openssh nodejs yarn rsync
|
|
|
|
COPY known_hosts /root/.ssh/known_hosts
|
|
COPY migration ./migration
|
|
COPY ./binaries/* /usr/local/bin/
|