Pepguy commited on
Commit
9f6bc56
·
verified ·
1 Parent(s): e334420

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -7
Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
  # Start with the official Bun image, which is based on Debian
2
- #FROM oven/bun:1.0
3
- FROM valkey/valkey:8.1.3
4
 
5
  # Switch to root user to install packages
6
  USER root
@@ -13,15 +13,11 @@ RUN apt-get update && apt-get install -y curl gpg apt-transport-https
13
 
14
  RUN echo "deb [signed-by=/usr/share/keyrings/valkey-io-archive-keyring.gpg] https://packages.valkey.io/deb bullseye main" | tee /etc/apt/sources.list.d/valkey-io.list
15
  RUN apt-get install -y curl
16
- RUN apt-get install unzip
17
-
18
- RUN curl -fsSL https://bun.sh/install | bash
19
-
20
 
21
  # Step 3: Now update again and install everything
22
  # The package manager now knows where to find Valkey
23
  RUN apt-get update && apt-get install -y \
24
-
25
  postgresql \
26
  postgresql-client \
27
  procps \
 
1
  # Start with the official Bun image, which is based on Debian
2
+ FROM oven/bun:1.0
3
+ #FROM valkey/valkey:8.1.3
4
 
5
  # Switch to root user to install packages
6
  USER root
 
13
 
14
  RUN echo "deb [signed-by=/usr/share/keyrings/valkey-io-archive-keyring.gpg] https://packages.valkey.io/deb bullseye main" | tee /etc/apt/sources.list.d/valkey-io.list
15
  RUN apt-get install -y curl
 
 
 
 
16
 
17
  # Step 3: Now update again and install everything
18
  # The package manager now knows where to find Valkey
19
  RUN apt-get update && apt-get install -y \
20
+ redis \
21
  postgresql \
22
  postgresql-client \
23
  procps \