Skip to content

Commit

Permalink
Update pezor.dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
zarguell authored Dec 16, 2024
1 parent 0730d24 commit e960f61
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dockerfiles/pezor.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ FROM debian:bullseye-slim
# Set working directory
WORKDIR /app

# Set environment variables to avoid interactive prompts
# Set environment variables to avoid interactive prompts and enable Go modules
ENV DEBIAN_FRONTEND=noninteractive \
DEBCONF_NONINTERACTIVE_SEEN=true \
PATH="/root/go/bin:/app/PEzor:/app/PEzor/deps/donut:/app/PEzor/deps/wclang/_prefix_PEzor_/bin:/app/wclang/_prefix_/bin:/usr/local/go/bin:${PATH}"
PATH="/root/go/bin:/app/PEzor:/app/PEzor/deps/donut:/app/PEzor/deps/wclang/_prefix_PEzor_/bin:/usr/local/go/bin:${PATH}" \
GO111MODULE=on

# Install required dependencies
RUN apt-get update && \
Expand Down

0 comments on commit e960f61

Please sign in to comment.