Skip to content

Commit 4799d3a

Browse files
committed
cleanup
1 parent 3165f8e commit 4799d3a

3 files changed

Lines changed: 3 additions & 7 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[package]
22
name = "postgres-restore-operator"
3-
version = "0.1.0"
3+
version = "0.0.0"
44
edition = "2024"
55
license = "GPL-3.0-or-later"
6+
publish = false
67

78
[dependencies]
89
anyhow = "1.0.101"

Containerfile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,9 @@ FROM busybox:glibc
22

33
ARG TARGETPLATFORM
44

5-
# Create user and group
6-
# RUN addgroup -g 1000 operator && adduser -D -u 1000 -G operator operator
7-
8-
# Copy all binaries from both architectures
95
COPY --chmod=0755 amd64/ /tmp/bins/amd64/
106
COPY --chmod=0755 arm64/ /tmp/bins/arm64/
117

12-
# Select and copy the correct binaries based on target platform
138
RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
149
cp /tmp/bins/amd64/* /usr/bin/; \
1510
elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \

0 commit comments

Comments
 (0)