Skip to content

Commit

Permalink
slimage
Browse files Browse the repository at this point in the history
  • Loading branch information
tjhorner committed Sep 14, 2024
1 parent 67c1442 commit 5b9fb9a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# BUILD FOR LOCAL DEVELOPMENT
###################

FROM node:current AS development
FROM node:current-alpine AS development

# Create app directory
WORKDIR /usr/src/app
Expand All @@ -25,7 +25,7 @@ USER node
# BUILD FOR PRODUCTION
###################

FROM node:current AS build
FROM node:current-alpine AS build

WORKDIR /usr/src/app

Expand All @@ -51,9 +51,9 @@ USER node
# PRODUCTION
###################

FROM node:current AS production
FROM node:current-alpine AS production

RUN apt update && apt-get install -y pipx ffmpeg
RUN apk add pipx ffmpeg git
RUN pipx install git+https://github.com/juanmcasillas/gopro2gpx
ENV PATH="$PATH:/root/.local/bin"

Expand Down

0 comments on commit 5b9fb9a

Please sign in to comment.