Skip to content

Commit

Permalink
Update Dockerfile (#35)
Browse files Browse the repository at this point in the history
* Update Dockerfile

* Update Trunk.toml

* Update Cargo.toml
  • Loading branch information
ChuckHend authored Oct 25, 2023
1 parent 2638630 commit f6b9118
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pg_later"
version = "0.0.11"
version = "0.0.12"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion Trunk.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ description = "Execute SQL statements now and check the results later."
homepage = "https://github.com/tembo-io/pg_later"
documentation = "https://github.com/tembo-io/pg_later"
categories = ["orchestration"]
version = "0.0.11"
version = "0.0.12"

[build]
postgres_version = "15"
Expand Down
4 changes: 3 additions & 1 deletion images/pglater-pg/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM quay.io/tembo/tembo-pg-cnpg:latest

ARG PG_LATER_VER=0.0.10
ARG PGMQ_VER=0.31.0

USER root
RUN chown -R postgres:postgres $PGDATA && \
chmod -R 0700 $PGDATA
Expand All @@ -12,7 +14,7 @@ RUN chown -R postgres:postgres $PGDATA && \
USER postgres
RUN pg_ctl init

RUN trunk install pgmq --version 0.15.0
RUN trunk install pgmq --version $PGMQ_VER
RUN trunk install pg_later --version $PG_LATER_VER

# Set permissive authentication
Expand Down

0 comments on commit f6b9118

Please sign in to comment.