mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +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"]
|