mirror of
https://github.com/Roslund/meshtastic-map.git
synced 2026-04-30 18:42:49 +02:00
14 lines
180 B
Docker
14 lines
180 B
Docker
FROM node:lts-alpine
|
|
|
|
# add project files to /app
|
|
ADD ./ /app
|
|
WORKDIR /app
|
|
|
|
# add open ssl
|
|
RUN apk add --no-cache openssl
|
|
|
|
# install node dependencies
|
|
RUN npm install
|
|
|
|
EXPOSE 8080
|