You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
344 B
11 lines
344 B
FROM node:18.18-bullseye
|
|
|
|
RUN git clone https://git.pblr-nyk.pro/gsd/Facti13.SteamTradeBot.JS.v1 && \
|
|
mv Facti13.SteamTradeBot.JS.v1 /app && chown node:node -R /app && chmod 770 -R /app && \
|
|
echo "const VERSION = $(date +%s);module.exports = VERSION;" > /app/version.js
|
|
|
|
USER node
|
|
WORKDIR /app
|
|
RUN npm install
|
|
|
|
CMD ["nodejs", "tradebot.js"]
|