Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
Accelerator
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
ioniodi
/
atrappos-mob
Public
forked from
map1t0/atrappos-mob
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
atrappos-mob
/
Dockerfile
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
45 lines (36 loc) · 990 Bytes
master
Breadcrumbs
atrappos-mob
/
Dockerfile
Copy path
Top
File metadata and controls
Code
Blame
45 lines (36 loc) · 990 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Dockerfile
FROM node:12.16.1-alpine3.11
# upgrade docker packages
RUN apk --no-cache add --update bash git libgcc libstdc++ linux-headers && \
rm -rf /var/cache/apk/*
ARG THUNDERFOREST_API_KEY
ARG STADIA_API_KEY
ARG GA_ID
ARG SERVER_URL
ARG DESKTOP_APP_URL
ARG NODE_ENV
ARG BABEL_ENV
ARG PORT
ENV THUNDERFOREST_API_KEY=$THUNDERFOREST_API_KEY
ENV STADIA_API_KEY=$STADIA_API_KEY
ENV GA_ID=$GA_ID
ENV SERVER_URL=$SERVER_URL
ENV DESKTOP_APP_URL=$DESKTOP_APP_URL
ENV NODE_ENV=$NODE_ENV
ENV BABEL_ENV=$BABEL_ENV
ENV PORT=$PORT
EXPOSE 4000
# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# Install app dependencies
#COPY package.json /usr/src/app/
# Bundle app source
COPY . /usr/src/app
COPY package.json /usr/src/app/
RUN rm -rf ./node_modules || echo "I cant find Node Modules Folder"
RUN rm -rf ./build || echo "I cant find Build Folder"
RUN npm install --build-from-source=bcrypt
RUN npm install -g serve
RUN npm run build -p
CMD ["serve", "-s", "build"]
You can’t perform that action at this time.