mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-21 21:09:49 +08:00
8 lines
140 B
Docker
8 lines
140 B
Docker
FROM postgres:15
|
|
|
|
# Copy the entrypoint script
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|